home *** CD-ROM | disk | FTP | other *** search
- #ifndef _FTP_H
- #define _FTP_H
-
- /* Definitions common to both FTP servers and clients */
- #define BLKSIZE 2048 /* Chunk size for file I/O */
-
- #define ASCII_TYPE 0
- #define IMAGE_TYPE 1
- #define LOGICAL_TYPE 2
-
- /* In ftpsubr.c: */
- long sendfile __ARGS((FILE *fp,FILE *network,int mode,int hash));
- long recvfile __ARGS((FILE *fp,FILE *network,int mode,int hash));
- int isbinary __ARGS((FILE *fp));
-
- #endif /* _FTP_H */
-